Passed
Pull Request — master (#2)
by André
03:13 queued 01:18
created

configuration.js ➔ ???   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 6
c 0
b 0
f 0
nc 1
dl 0
loc 8
rs 10
nop 1
1
module.exports = {
2
	mqtt: (input) => {
3
		return {
4
			username: input.source.username,
5
			password: input.source.password,
6
			port: input.source.port,
7
			qos: 2
8
		}
9
	}
10
}
11